home *** CD-ROM | disk | FTP | other *** search
/ Power Hacker 2003 / Power_Hacker_2003.iso / Exploit and vulnerability / w00w00 / w00aimexp / Makefile.html < prev    next >
Encoding:
Makefile  |  2002-01-02  |  497 b   |  25 lines

  1. # w00aimexp
  2. # Copyright (C) 2001-2002, w00w00
  3. # http://www.w00w00.org
  4.  
  5. CC = gcc
  6. RM = rm -f
  7.  
  8. # Options:
  9. # -DUSE_FULL_SIZE (use if your shellcode is larger than 1701 bytes)
  10. # -DDEBUG (if you want to see the internals of w00aimexp)
  11. # -DDEBUG_LIBFAIM (if you want to see the internals of libfaim)
  12. CFLAGS = -I/usr/local/include/faim -DDEBUG
  13.  
  14. PROGNAME = w00aimexp
  15. OBJS = w00aimexp.o login.o
  16.  
  17. all: $(OBJS)
  18.     $(CC) -o $(PROGNAME) $(OBJS) -lfaim
  19.  
  20. .c.o:
  21.     $(CC) $(CFLAGS) -c $<
  22.  
  23. clean:
  24.     $(RM) $(PROGNAME) *.o
  25.